Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/068-music player

style.css cody/solygambas/html-css-javascript-projects/068-music player/style.css
168 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
box-sizing: border-box;
}

body {
background-color: #f7f7f7;
index.html cody/solygambas/html-css-javascript-projects/068-music player/index.html
322 Views
0 Comments
<!-- Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
script.js cody/solygambas/html-css-javascript-projects/068-music player/script.js
223 Views
0 Comments
const musicContainer = document.getElementById("music-container");
const playButton = document.getElementById("play");
const prevButton = document.getElementById("prev");
const nextButton = document.getElementById("next");
const audio = document.getElementById("audio");
const progress = document.getElementById("progress");
const progressContainer = document.getElementById("progress-container");
const title = document.getElementById("title");